home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-249.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  93 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12507);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2002-1363");
  13.  
  14.  name["english"] = "RHSA-2004-249: libpng";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated libpng packages that fix a possible buffer overflow are now
  21.   available.
  22.  
  23.   The libpng package contains a library of functions for creating and
  24.   manipulating PNG (Portable Network Graphics) image format files.
  25.  
  26.   During an audit of Red Hat Linux updates, the Fedora Legacy team found a
  27.   security issue in libpng that had not been fixed in Red Hat Enterprise
  28.   Linux 3. An attacker could carefully craft a PNG file in such a way that
  29.   it would cause an application linked to libpng to crash or potentially
  30.   execute arbitrary code when opened by a victim.
  31.  
  32.   Note: this issue does not affect Red Hat Enterprise Linux 2.1
  33.  
  34.   Users are advised to upgrade to these updated packages that contain a
  35.   backported security fix and are not vulnerable to this issue.
  36.  
  37.  
  38.  
  39.  
  40. Solution : http://rhn.redhat.com/errata/RHSA-2004-249.html
  41. Risk factor : High';
  42.  
  43.  script_description(english:desc["english"]);
  44.  
  45.  summary["english"] = "Check for the version of the libpng packages";
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  51.  family["english"] = "Red Hat Local Security Checks";
  52.  script_family(english:family["english"]);
  53.  
  54.  script_dependencies("ssh_get_info.nasl");
  55.  
  56.  script_require_keys("Host/RedHat/rpm-list");
  57.  exit(0);
  58. }
  59.  
  60. include("rpm.inc");
  61. if ( rpm_check( reference:"libpng-1.2.2-24", release:"RHEL3") )
  62. {
  63.  security_hole(0);
  64.  exit(0);
  65. }
  66. if ( rpm_check( reference:"libpng-devel-1.2.2-24", release:"RHEL3") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71. if ( rpm_check( reference:"libpng10-1.0.13-14", release:"RHEL3") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76. if ( rpm_check( reference:"libpng10-devel-1.0.13-14", release:"RHEL3") )
  77. {
  78.  security_hole(0);
  79.  exit(0);
  80. }
  81. if ( rpm_check( reference:"libpng-1.2.2-24", release:"RHEL3") )
  82. {
  83.  security_hole(0);
  84.  exit(0);
  85. }
  86.  
  87. if ( rpm_exists(rpm:"libpng-", release:"RHEL3") )
  88. {
  89.  set_kb_item(name:"CVE-2002-1363", value:TRUE);
  90. }
  91.  
  92. set_kb_item(name:"RHSA-2004-249", value:TRUE);
  93.